home *** CD-ROM | disk | FTP | other *** search
/ Whiteline: Alpha / Whiteline Alpha.iso / progtool / c / gcc / crssrc16.zoo / test / bandit / Makefile < prev    next >
Encoding:
Makefile  |  1989-03-21  |  254 b   |  16 lines

  1. # simple makefile for bandit
  2. CC = mgcc
  3.  
  4. ALL = bandit bandit32
  5.  
  6. all: $(ALL)
  7.  
  8. bandit:    bandit.c
  9.     $(CC) -o bandit $(CFLAGS) bandit.c -lcurses -mshort -s
  10.  
  11. bandit32: bandit.c
  12.     $(CC) -o bandit32 $(CFLAGS) bandit.c -lcurses32 -s
  13.  
  14. clean:
  15.     rm -f $(ALL) *.o report
  16.